List Saved Passwords
Saved Passwords
List Saved Passwords
GET
List Saved Passwords
Retrieves all passwords saved by the authenticated user.
Endpoint
Authentication
Bearer token for authentication. User must be logged in.
Request
This endpoint does not accept any parameters. It automatically filters passwords for the authenticated user.Response
A message indicating the user whose passwords are being retrieved.
Array of saved password objects.
Success Response
200 OK
Error Responses
Example Request
Implementation Details
This endpoint is implemented inviews.py:64 using the view_all_saved_passwords view function. It filters the SavedPasswords model by the authenticated user and serializes the results using SavedPasswordsSerializer.